home *** CD-ROM | disk | FTP | other *** search
/ 3D GFX / 3D GFX.iso / amiutils / a_d / colorpatch / source / makefile < prev    next >
Encoding:
Makefile  |  1995-12-31  |  921 b   |  35 lines

  1. # =====================
  2. #  ColorPatch Makefile
  3. # =====================
  4.  
  5. # Compiler Options
  6. COpts = ERRREXX NOMINC NOSTKCHK STRMER UTILLIB CPU=0 NOICONS
  7.  
  8.  
  9. Wanted: /ColorPatch Test
  10.  
  11.  
  12. # ColorPatch Commodity
  13.  
  14. /ColorPatch             : ColorPatch.o ColorPatch_GUI.o PatchCode.o
  15.     SLink SC SD NOICONS FROM ColorPatch.o ColorPatch_GUI.o PatchCode.o TO /ColorPatch LIB LIB:sc.lib+LIB:amiga.lib
  16.  
  17. ColorPatch.o            : ColorPatch.gst ColorPatch.c ColorPatch_GUI.c
  18.     SC $(COpts) GST=ColorPatch.gst GSTIMM ColorPatch.c
  19.  
  20. ColorPatch.gst          : ColorPatch.h
  21.     SC $(COpts) MAKEGST=ColorPatch.gst ColorPatch.h
  22.  
  23. ColorPatch_GUI.o        : ColorPatch_GUI.c
  24.     SC $(COpts) GST=ColorPatch.gst GSTIMM ColorPatch_GUI.c IGNORE=100,147,154
  25.  
  26. PatchCode.o        : PatchCode.asm
  27.     GenAm FROM PatchCode.asm TO PatchCode.o
  28.  
  29.  
  30. Test: Test.o
  31.   SLink Test.o TO Test SC SD NOICONS LIB LIB:sc.lib+LIB:amiga.lib
  32.  
  33. Test.o: Test.c
  34.   SC $(COpts) Test.c
  35.